home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Powervisor v1.10b disk1.adf / PVDevelop / include / PV / EvalBase.h < prev    next >
C/C++ Source or Header  |  1991-09-15  |  584b  |  35 lines

  1. #ifndef PV_EVALBASE_H
  2. #define PV_EVALBASE_H TRUE
  3. /*
  4. **  $Filename: EvalBase.h $
  5. **  $Release: 1.02 $
  6. **  $Revision: 37.346 $
  7. **  $Date: 15 Sep 91 $
  8. **
  9. **  Structure definitions for Eval Base (see 'TheWizardCorner')
  10. **
  11. **  © 1991 Jorrit Tyberghein, included with PowerVisor
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef PV_PVMEMORY_H
  16. #include "PVMemory.h"
  17. #endif
  18.  
  19.  
  20. #define VARTYPE_VARIABLE    0
  21. #define VARTYPE_CONSTANT    1
  22. #define VARTYPE_SPECIAL        2
  23. #define VARTYPE_FUNCTION    3
  24.  
  25.  
  26. struct EvalBase
  27.     {
  28.         ULONG pad0;
  29.         ULONG pad1;
  30.         struct PVMemoryBlock Variables;
  31.         UBYTE Priorities[18];
  32.     };
  33.  
  34. #endif
  35.